home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVOREAD.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  970b  |  26 lines

  1. /*================================================*/
  2. /* TVOREAD.C                                      */
  3. /*                                                */
  4. /* (c) Copyright 1988 Ralf Brown                  */
  5. /*     All Rights Reserved                        */
  6. /* May be freely copied for noncommercial use,    */
  7. /* provided that this copyright notice remains    */
  8. /* intact and any changes are indicated in the    */
  9. /* comment blocks preceding functions             */
  10. /*================================================*/
  11.  
  12. #include "tvapi.h"
  13.  
  14. /*================================================*/
  15. /* TVobq_read  wait for any object in OBJECTQ to  */
  16. /*            have input                          */
  17. /*   Ralf Brown 5/6/88                            */
  18. /*================================================*/
  19.  
  20. OBJECT pascal TVobq_read(OBJECT obq)
  21. {
  22.    return (OBJECT) TVsendmsg1(READ_MSG, obq?TOS:OBJQME, obq) ;
  23. }
  24.  
  25. /* End of TVOREAD.C */
  26.